Components Gallery

Last updated: July 4, 2026

Components Gallery

This page showcases the various markdown components and formatting options available in FoxWiki. You can use this as a reference when creating your own documentation.

Text Formatting

FoxWiki supports standard markdown text formatting:
  • Bold text is created with
    **Bold text**
    or
    __Bold text__
  • Italic text is created with
    *Italic text*
    or
    _Italic text_
  • Bold and italic is created with
    ***Bold and italic***
  • Strikethrough is created with
    ~~Strikethrough~~

Headings

Headings are created with
#
symbols.

Heading 1 (#)

Heading 2 (##)

Heading 3 (###)

Heading 4 (####)

Heading 5 (#####)

Heading 6 (######)

Lists

Unordered Lists

Unordered lists can be created with
-
,
*
, or
+
:
  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3
Loading...

Ordered Lists

Ordered lists are created with numbers:
  • First item
  • Second item
    • Nested item 2.1
    • Nested item 2.2
  • Third item
Loading...

Task Lists

Task lists are created with
- [ ]
and
- [x]
:
  • Completed task
  • Incomplete task
  • Another task
Loading...
Links are created with
[link text](URL)
:
Loading...

Images

Images are created with
![alt text](image URL)
:
FoxWiki Logo
Loading...

Blockquotes

Blockquotes look like Cards
They are created with
>
:
This is a blockquote
It can span multiple lines
Loading...

Code

Inline Code

Inline code is created with backticks:
const example = "hello world";
Loading...

Code Blocks

Code blocks are created with triple backticks and an optional language identifier:
Loading...
Loading...

Tables

Tables are created with pipes and dashes:

Header 1

Header 2

Header 3

Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6
Loading...
Wide tables are horizontally scrollable by default.

Card tables

You can also switch a table to card view with an optional property:

bacon

Device

bacon

Maintainer

Alicia

Android

14

Notes

Stable daily driver

guacamole

Device

guacamole

Maintainer

Ben

Android

15

Notes

Great battery life

lavender

Device

lavender

Maintainer

Chris

Android

13

Notes

Good budget device

Loading...

Card tables on mobile (hybrid)

Or use a hybrid mode that keeps the normal table on bigger screens and switches to cards on mobile:

Device

Maintainer

Android

Notes

baconAlicia14Stable daily driver
guacamoleBen15Great battery life
lavenderChris13Good budget device

bacon

Device

bacon

Maintainer

Alicia

Android

14

Notes

Stable daily driver

guacamole

Device

guacamole

Maintainer

Ben

Android

15

Notes

Great battery life

lavender

Device

lavender

Maintainer

Chris

Android

13

Notes

Good budget device

Loading...

Horizontal Rules

Horizontal rules are created with three or more hyphens, asterisks, or underscores:

Loading...

Footnotes

Footnotes are created with
[^label]
and
[^label]: explanation
:
Here's a sentence with a footnote1.
Loading...

Footnotes

  • This is the footnote content.

Alerts - from wiki.js

Loading...